Skip to content

Conversation

@lstnl
Copy link
Contributor

@lstnl lstnl commented Jun 24, 2024

No description provided.

rlubos added 30 commits May 25, 2024 10:02
…config"

This reverts commit db64b2e.

Signed-off-by: Robert Lubos <[email protected]>
…nRF54H20dk"

This reverts commit 69aa286.

Signed-off-by: Robert Lubos <[email protected]>
…PU in 802.15.4 init"

This reverts commit 9074266.

Signed-off-by: Robert Lubos <[email protected]>
…ndpoint binding deadlock"

This reverts commit 5c19b37.

Signed-off-by: Robert Lubos <[email protected]>
…ses for Watchdog"

This reverts commit 4e6070d.

Signed-off-by: Robert Lubos <[email protected]>
…15 PDK"

This reverts commit 27319a0.

Signed-off-by: Robert Lubos <[email protected]>
…PIO driver"

This reverts commit 921a872.

Signed-off-by: Robert Lubos <[email protected]>
…runner validity"

This reverts commit b5cf304.

Signed-off-by: Robert Lubos <[email protected]>
…onfiguration"

This reverts commit 7de9ca0.

Signed-off-by: Robert Lubos <[email protected]>
…red reset"

This reverts commit 8a73ec1.

Signed-off-by: Robert Lubos <[email protected]>
…rt for soc overlays"

This reverts commit b42c69e.

Signed-off-by: Robert Lubos <[email protected]>
… fragments"

This reverts commit 22ee8f7.

Signed-off-by: Robert Lubos <[email protected]>
…for zephyr_build_string"

This reverts commit 50c9a91.

Signed-off-by: Robert Lubos <[email protected]>
57300 and others added 25 commits June 6, 2024 13:07
This will be replaced by a different solution upstream (NCSDK-27673).

Migrate the existing BICR bindings from NCS 2.4.99-cs3 to NCS 2.7.0.
They are updated to remove obsoleted values. Enable generating bicr.hex
for Application core by default.

Signed-off-by: Grzegorz Swiderski <[email protected]>
Add missing Kconfigs to nRF9160dk overlays.

Signed-off-by: Markus Lassila <[email protected]>
(cherry picked from commit 53ddff6)
… test scope

Adding a separate overlay for nrf54l15 flpr is required because
running tests on console uart fails.

Signed-off-by: Jakub Zymelka <[email protected]>
(cherry picked from commit ae0822d)
nrf-squash! [nrf noup] board: nordic: thingy53: Enable default images for sysbuild

Removes selecting SECURE_BOOT as this is now an automatic selection

Signed-off-by: Jamie McCrae <[email protected]>
Handle MPI and root manifest for radio core separately from the main
build system logic.

Ref: NCSDK-27790

Upstream PR: zephyrproject-rtos/zephyr#73797

Signed-off-by: Tomasz Chyrowicz <[email protected]>
Update hal_nordic with fix in nrfx_gpiote.

Upstream PR: zephyrproject-rtos/zephyr#73704

Signed-off-by: Magdalena Pastula <[email protected]>
(cherry picked from commit f5bb97abb6dd0e20b689b4058b341dbbc427be29)
Needed to support sysbuild (app + flpr) with --erase option.

Signed-off-by: Piotr Kosycarz <[email protected]>
(cherry picked from commit 146195a)
Signed-off-by: Rafał Kuźnia <[email protected]>
Erase and reset must run only once during flashing.
This prevents a situation, where the next flashed image erases the
previous one.

Upstream PR: zephyrproject-rtos/zephyr#73900

Signed-off-by: Rafał Kuźnia <[email protected]>
Adjustment LFXO CLOAD value. New value is a resualt of DK's characterization.

Signed-off-by: Karol Lisak <[email protected]>
In case of thread failure, fix the registrations by properly managing
the synchronization i.e. use conditional wait only if thread is being
initialized or will be initialized, else check for success or failure
without waiting for conditional variables.

Fixes #73523.

Upstream PR: zephyrproject-rtos/zephyr#73524

Signed-off-by: Chaitanya Tata <[email protected]>
Increasing the adv latency range to the minimum valid
ReceiveDelay value, 10ms. 4ms might be small for some
target systems.

Signed-off-by: alperen sener <[email protected]>
(cherry picked from commit 0b220dd)
Signed-off-by: alperen sener <[email protected]>
APIs for enabling and disabling the scanner may take larger time than
expected and scheduling of the lpn state machine is affected by it.
Since these type of latencies are factored into timeouts and scheduling
times, we need to call scan enable/disable APIs after scheduling the
next event time for LPN state machine to be more accurate.

Signed-off-by: alperen sener <[email protected]>
(cherry picked from commit c93859c)
Signed-off-by: alperen sener <[email protected]>
Fixes issue where PB GATT Server will drop
advertising device name if optional provisioning
URI is not provided.

Signed-off-by: Anders Storrø <[email protected]>
(cherry picked from commit cee8080)
Signed-off-by: alperen sener <[email protected]>
…ection

Adds a tag to the sysbuild application configuration section so it
can be referenced in other documentation

Upstream PR: zephyrproject-rtos/zephyr#74002

Signed-off-by: Jamie McCrae <[email protected]>
Enable execution of ADC driver tests on nrf54l15.
Overlay file for nrf54l15 already exists.

Signed-off-by: Sebastian Głąb <[email protected]>
(cherry picked from commit 7a5f2ad)
kconfig_soc_root was mistakenly set to value of BOARD_ROOT.
Fix this by correctly set kconfig_soc_root to the value of SOC_ROOT.

Upstream PR: zephyrproject-rtos/zephyr#74057

Signed-off-by: Torsten Rasmussen <[email protected]>
(cherry picked from commit e7aef7ffb9b197efd914fe402621b63d28551f9e)
For 2.4GHz and 6GHz bands, while counting the channels in configured
range, start of the range is being counted twice. Correct this
by advancing the index by 1 while counting channels in range.

Upstream PR: zephyrproject-rtos/zephyr#74063

Signed-off-by: Ravi Dondaputi <[email protected]>
Legacy shim takes less flash so it should be a first choice on cores
with less code memory (like RISCV cores on nrf54h20). Adding new
instances support to the legacy shim.

Signed-off-by: Krzysztof Chruściński <[email protected]>
(cherry picked from commit d07b13d)
d599e2b removed early return from sys_clock_timeout_handler if
current counter value is less than cc_val. It seems that this return is
needed as after the removal some stress tests which were using system
timers heavily started to hang.

Signed-off-by: Krzysztof Chruściński <[email protected]>
(cherry picked from commit af3c8b9)
This reverts commit 24663df.
(temporarily)

Signed-off-by: Grzegorz Swiderski <[email protected]>
Upstream PR: zephyrproject-rtos/zephyr#72857

Cleanup the Kconfig generating code in hwm_v2.cmake by moving common
logic inside the kconfig_gen() helper function.

This prepares the code for board extension feature.

Signed-off-by: Torsten Rasmussen <[email protected]>
(cherry picked from commit 6d51acab7af635763138b9231f4655b1cb4d8e8f)
Upstream PR: zephyrproject-rtos/zephyr#72857

Fixes: #69548

Support extending an existing board with new board variants.

This commit introduces the following changes to allow a board to be
extended out-of-tree.

The board yaml schema is extended to support an extend field which
will be used to identify the board to be extended.

A board 'plank' can be extended like this:
> board:
>   extend: plank
>   variants:
>     - name: ext
>       qualifier: soc1

For the rest of the build system this means that there is no longer a
single board directory.
The existing CMake variable BOARD_DIR is kept and reference the
directory which defines the board.
A new CMake variable BOARD_DIRECTORIES provides a list of all
directories which defines board targets for the board.
This means the directory which defines the board as well as all
directories that extends the board.

Signed-off-by: Torsten Rasmussen <[email protected]>
(cherry picked from commit 92599711f5e0201997da95e6c18d33dd85fbbc1e)
Upstream PR: zephyrproject-rtos/zephyr#72857

Fixes: #72374

Support extending an existing SoC with new CPU clusters.

This commit introduces the following changes to allow an SoC to be
extended out-of-tree.

The SoC yaml schema is extended to support an extend field which
will be used to identify the SoC to be extended with extra CPU clusters.

A board 'cos' can be extended like this:
> socs:
>   extend: cos
>   cpuclusters:
>     - name: extra_core

Signed-off-by: Torsten Rasmussen <[email protected]>
(cherry picked from commit 0c73756be4f885b7be4bebc233c4746de03e1b52)
Upstream PR: zephyrproject-rtos/zephyr#74316

Taking a cue from `nrfx/templates`, introduce this file so that it can
be overridden out-of-tree to add external nRF product definitions.

Signed-off-by: Grzegorz Swiderski <[email protected]>
(cherry picked from commit 6ee6468dc7f7a1391d1961e696bbc671ae350c2f)
Added config option to delay start of DVFS handles task.

Upstream PR: TBD

Signed-off-by: Lukasz Stepnicki <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.